exception handler - определение. Что такое exception handler
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое exception handler - определение

PROCESS OF RESPONDING TO ANOMALOUS OR EXCEPTIONAL CONDITIONS REQUIRING SPECIAL PROCESSING IN COMPUTER PROGRAMMING
Error handling; Error handler; Try-catch block; Programming exception; Checked exceptions; Exception (computer science); Exception handler; Exception (computing); Checked exception; Exception condition; Exception (programming); Hardware exception; Run time exception; Error handling testing; Unhandled exception; Unhandled Exception; Unhandled exceptions; Unhandled Exceptions; Error reporting; Error trapping; Try catch; Exception specification; Wrong Argument; Exception mechanism; Try block; Pokémon exception handling; Pokemon exception handling; Exceptions handling; Unchecked exception; Java.lang.Exception; Java.lang.Throwable; Runtime exception; Static checking of exceptions
Найдено результатов: 133
exception handler         
Special code which is called when an exception occurs during the execution of a program. If the programmer does not provide a handler for a given exception, a built-in system exception handler will usually be called resulting in abortion of the program run and some kind of error indication being returned to the user. Examples of exception handler mechanisms are Unix's signal calls and Lisp's catch and throw. (1994-10-31)
Exception handling         
In computing and computer programming, exception handling is the process of responding to the occurrence of exceptions – anomalous or exceptional conditions requiring special processing – during the execution of a program. In general, an exception breaks the normal flow of execution and executes a pre-registered exception handler; the details of how this is done depend on whether it is a hardware or software exception and how the software exception is implemented.
Microsoft-specific exception handling mechanisms         
Structured Exception Handling; Vectored Exception Handler; MS Structured Exception Handling; MS Vectored Exception Handling; Structured exception handling; Vectored Exception Handling; Structured Exception Handler; SafeSEH
The Microsoft Windows family of operating systems employ some specific exception handling mechanisms.
Automated exception handling         
Automated Exception Handling
Automated exception handling is a computing term referring to the computerized handling of errors. Runtime systems (engines) such as those for the Java programming language or .
Exception handling syntax         
IOError; Throw command; Comparison of programming languages (exception handling)
Exception handling syntax is the set of keywords and/or structures provided by a computer programming language to allow exception handling, which separates the handling of errors that arise during a program's operation from its ordinary processes. Syntax for exception handling varies between programming languages, partly to cover semantic differences but largely to fit into each language's overall syntactic structure.
Alan B. Handler         
AMERICAN JUDGE
Alan Handler; Justice Handler
Alan B. Handler (born July 20, 1931) served as a New Jersey Supreme Court Justice from 1977 until 1999.
GPL linking exception         
LICENSE EXCEPTION OF GNU GENERAL PUBLIC LICENSE
Classpath license; Classpath exception; GPL runtime exception; GPL linking exeption; Classpath Exception; Classpath linking exception
A GPL linking exception modifies the GNU General Public License (GPL) in a way that enables software projects which provide library code to be "linked to" the programs that use them, without applying the full terms of the GPL to the using program. Linking is the technical process of connecting code in a library to the using code, to produce a single executable file.
handler         
WIKIMEDIA DISAMBIGUATION PAGE
Handler (disambiguation); Handler (computing)
(handlers)
1.
A handler is someone whose job is to be in charge of and control an animal.
Fifty officers, including frogmen and dog handlers, are searching for her.
N-COUNT: usu supp N
2.
A handler is someone whose job is to deal with a particular type of object.
...baggage handlers at Gatwick airport.
N-COUNT: usu n N
handler         
WIKIMEDIA DISAMBIGUATION PAGE
Handler (disambiguation); Handler (computing)
n. a baggage; food handler
handler         
WIKIMEDIA DISAMBIGUATION PAGE
Handler (disambiguation); Handler (computing)
¦ noun
1. a person who handles a particular type of article or commodity.
2. a person who trains or has charge of an animal, in particular a police officer in charge of a dog.
3. a person who trains or manages another person.
a person who trains and acts as second to a boxer.

Википедия

Exception handling

In computing and computer programming, exception handling is the process of responding to the occurrence of exceptions – anomalous or exceptional conditions requiring special processing – during the execution of a program. In general, an exception breaks the normal flow of execution and executes a pre-registered exception handler; the details of how this is done depend on whether it is a hardware or software exception and how the software exception is implemented. Exception handling, if provided, is facilitated by specialized programming language constructs, hardware mechanisms like interrupts, or operating system (OS) inter-process communication (IPC) facilities like signals. Some exceptions, especially hardware ones, may be handled so gracefully that execution can resume where it was interrupted.